home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Freeware / Programare / bluej / bluejsetup-203.exe / {app} / lib / moe.defs < prev    next >
Text File  |  2004-12-19  |  2KB  |  65 lines

  1. # Moe editor default properties
  2.  
  3. ##
  4. ##  Define the toolbar
  5. ##
  6.  
  7. toolbar = compile undo cut copy paste find find-next close
  8.  
  9. # actions for toolbar commands (only needed when it differs from command name)
  10.  
  11. openAction = open-file
  12. cutAction = cut-to-clipboard
  13. copyAction = copy-to-clipboard
  14. pasteAction = paste-from-clipboard
  15. find-nextAction = find-next
  16.  
  17. ##
  18. ##  Define the menus. Each menu gets a key, which is used afterwards to
  19. ##  define the menu's details.
  20. ##
  21.  
  22. menubar = class edit tools option
  23.  
  24. # Actions for menus. Each value must be a defined moe action name. Each 
  25. #   action becomes an item in the menu. Use the minus sign (-) to create 
  26. #   a separator.
  27.  
  28. class = save reload - page-setup print - close
  29. edit = undo redo - cut-to-clipboard copy-to-clipboard paste-from-clipboard - indent-block deindent-block comment-block uncomment-block - insert-method
  30. tools = find find-next find-next-backward replace go-to-line - compile toggle-breakpoint - toggle-interface-view
  31. option = key-bindings preferences
  32.  
  33. # Syntax colour definitions
  34. # =========================
  35.  
  36. # Key to values
  37. # -------------
  38.  
  39. # comment    Single line comments (//) and standard multi-line comments (/*  */)
  40. # javadoc    Multi-line javadoc comments (/**   */)
  41. # keyword1    Standard Java keywords (e.g. abstract, final, do, if, else, new, catch etc.)
  42. # keyword2    Class creation keywords (package, import, class, interface, extends, implements)
  43. # keyword3    Remaining Java keywords (this, null, super, true, false)
  44. # primitive    Java primitives (int, float, double, char)
  45. # string    String literals (anything in "quotes")
  46.  
  47. # Any of the values above that are not defined are given the BlueJ default colours.
  48.  
  49. # Key to colours
  50. # --------------
  51.  
  52. # Each colour should be given a six digit hexidecimal value of the from rrggbb where
  53. # the pairs of digits refer to the red, green and blue values respectively.
  54.  
  55. comment = 999999
  56. javadoc = 000099
  57. stand-out = ee00bb
  58. keyword1 = 660033
  59. keyword2 = cc0000
  60. keyword3 = 006699
  61. primitive = cc0000
  62. string = 006600
  63.  
  64.  
  65.